Lender Price API
Locking a Loan Without LOS / 4. Submit Lock Request / 4.5 Add Request Lock Event with No SellSide
In This Topic
    4.5 Add Request Lock Event with No SellSide
    In This Topic

    Path

    POST /rest/v1/lp-ppe-api/price-quote/addLockEvent
    

    Headers

                
    
    Authorization
    
    Bearer {{accessToken}}
    

    Body

    Copy Code
    {
        "priceQuoteId": "{{priceQuoteId}}",
        "lockId": "{{lockId}}",
        "lockStatusId": "{{lockRequestId}}",
        "lockEventExceptionInfo": null,
        "lockEventExtensionInfo": null,
        "scenario": {{scenario}},
        "hasSellSide": false,
        "lockDateUpdate": null,
        "lockEventId": "{{lockEventId}}",
        "lockEventComment": "Whatever comment you would like"
    }

    Example Request

    Copy Code
    curl --location -g '{{protocol}}{{domain}}/rest/v1/lp-ppe-api/price-quote/addLockEvent' \
    --header 'Authorization: Bearer {{accessToken}}' \
    --data '{
        "priceQuoteId": "{{priceQuoteId}}",
        "lockId": "{{lockId}}",
        "lockStatusId": "{{lockRequestId}}",
        "lockEventExceptionInfo": null,
        "lockEventExtensionInfo": null,
        "scenario": {{scenario}},
        "hasSellSide": false,
        "lockDateUpdate": null,
        "lockEventId": "{{lockEventId}}",
        "lockEventComment": "Whatever comment you would like"
    }'

    Example Response

    This request doesn't return a response body.